home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / dslibrary.lha / ds.library / Install < prev    next >
Text File  |  1997-02-13  |  1KB  |  52 lines

  1. ;  *** ds.library installation scipt ***
  2.  
  3.  
  4. ; *** Set some useful messages ***
  5.  
  6.     (set #install-msg (cat    "\n\nds.library installation script.\n"
  7.                                     "This script installs ds.library on your Amiga.\n\n"
  8.                                     "Read the documentation for\n"
  9.                                     "more information on the distribution\n"
  10.                                     "and commercial usage.\n\n"
  11.                                     "ds.library © 1997 by Markus Hillenbrand\n"
  12.                                     "All rights reserved."))
  13.     (set #welcome-msg          "Welcome to the ds.library installation!")
  14.     (set #bad-kick            "You must be using Kickstart 37 to use this program!")
  15.     (set #bad-installer       "You must be using Installer 43.x to install GUICreator!")
  16.     (set #ask-lib-dir          "Where shall I install the library ?\n(A drawer will NOT be created)")
  17.     (set #copyfiles          "Copying files to harddisk ...")
  18.  
  19. ; *** Welcome the user to the installation
  20.  
  21.     (message #install-msg)
  22.  
  23. ; *** Check for Kickstart version ***
  24.  
  25.     (if (< (/ (getversion) 65536) 37)
  26.         ((abort #bad-kick))
  27.     )
  28.  
  29. ; *** Check for Installer-Version ***
  30.  
  31.     (if (< (/ @installer-version 65536) 43)
  32.         ((abort #bad-installer))
  33.     )
  34.  
  35.  
  36. ; *** Ask the user for the default-destinations ***
  37.  
  38.     (set #lib-dest    (askdir     (prompt #ask-lib-dir)
  39.                               (help @askdir-help)
  40.                               (default "libs:")
  41.                         )
  42.     )
  43.  
  44. ; *** Copy the library ***
  45.  
  46.     (copyfiles (prompt "Copying ds.library to" #lib-dest)
  47.                 (help @copylib-help)
  48.                 (source "libs/ds.library")
  49.                 (dest   #lib-dest)
  50.     )
  51.  
  52.